From: Dmitry Antipov Date: Mon, 7 Oct 2013 10:27:48 +0000 (+0400) Subject: * alloc.c (Fmake_string): Fix last change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~2946 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=cc593f54d9db1ca94dcafba5aaa18784123a666b;p=emacs.git * alloc.c (Fmake_string): Fix last change. --- diff --git a/src/alloc.c b/src/alloc.c index 0e6a01944ab..990390f5a36 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1990,7 +1990,7 @@ INIT must be an integer that represents a character. */) else { unsigned char str[MAX_MULTIBYTE_LENGTH]; - int len = CHAR_STRING (c, str); + ptrdiff_t len = CHAR_STRING (c, str); EMACS_INT string_len = XINT (length); unsigned char *p, *beg, *end;